home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revista CD Expert 8
/
Revista CD Expert nº 08 CD1.iso
/
Utilitarios
/
Programacao
/
Bloodshed Dev-C++ 2.0
/
_SETUP.1
/
i386pe.xr
< prev
next >
Wrap
Text File
|
1998-01-20
|
2KB
|
90 lines
OUTPUT_FORMAT(pei-i386)
SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/mingw32/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/mingw32/i386-mingw32/lib);
ENTRY(_mainCRTStartup)
SECTIONS
{
.text :
{
*(.text)
/* ??? Why is .gcc_exc here? */
/* Grouped section support currently must be explicitly provided for
in the linker script. */
*(.text$)
*(.gcc_except_table)
}
.bss BLOCK(__section_alignment__) :
{
__bss_start__ = . ;
*(.bss)
*(COMMON)
__bss_end__ = . ;
}
.data BLOCK(__section_alignment__) :
{
__data_start__ = . ;
*(.data)
*(.data2)
__data_end__ = . ;
/* Grouped section support currently must be explicitly provided for
in the linker script. */
*(.data$)
}
.rdata BLOCK(__section_alignment__) :
{
*(.rdata)
*(.eh_frame)
/* Grouped section support currently must be explicitly provided for
in the linker script. */
*(.rdata$)
}
.edata BLOCK(__section_alignment__) :
{
*(.edata)
}
/DISCARD/ BLOCK(__section_alignment__) :
{
*(.debug$S)
*(.debug$T)
*(.debug$F)
*(.drectve)
}
.idata BLOCK(__section_alignment__) :
{
/* This cannot currently be handled with grouped sections.
See pe.em:sort_sections. */
*(.idata$2)
*(.idata$3)
*(.idata$4)
*(.idata$5)
*(.idata$6)
*(.idata$7)
}
.CRT BLOCK(__section_alignment__) :
{
/* Grouped sections are used to handle .CRT$foo. */
*(.CRT$)
}
.endjunk BLOCK(__section_alignment__) :
{
/* end is deprecated, don't use it */
}
.reloc BLOCK(__section_alignment__) :
{
*(.reloc)
}
.rsrc BLOCK(__section_alignment__) :
{
*(.rsrc)
/* Grouped sections are used to handle .rsrc$0[12]. */
*(.rsrc$)
}
.stab BLOCK(__section_alignment__) :
{
[ .stab ]
}
.stabstr BLOCK(__section_alignment__) :
{
[ .stabstr ]
}
}